home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_222 / plplot / src / source.zoo / xform.c < prev   
C/C++ Source or Header  |  1989-05-15  |  174b  |  12 lines

  1. #include "plplot.h"
  2.  
  3. void xform(x,y,tx,ty)
  4. float x, y, *tx, *ty;
  5. {
  6.       extern float tr[];
  7.  
  8.       *tx = tr[0]*x + tr[1]*y + tr[2];
  9.       *ty = tr[3]*x + tr[4]*y + tr[5];
  10. }
  11.  
  12.